home *** CD-ROM | disk | FTP | other *** search
/ Aminet 2 / Aminet AMIGA CDROM (1994)(Walnut Creek)[Feb 1994][W.O. 44790-1].iso / Aminet / util / gnu / diff_2_3.lha / diff-2.3 / diff.info-2 (.txt) < prev    next >
GNU Info File  |  1993-05-19  |  50KB  |  954 lines

  1. This is Info file diff.info, produced by Makeinfo-1.54 from the input
  2. file ./diff.texi.
  3.    This file documents the the GNU `diff', `diff3', `sdiff', and `cmp'
  4. commands for showing the differences between text files and the `patch'
  5. command for using their output to update files.
  6.    Copyright (C) 1992, 1993 Free Software Foundation, Inc.
  7.    Permission is granted to make and distribute verbatim copies of this
  8. manual provided the copyright notice and this permission notice are
  9. preserved on all copies.
  10.    Permission is granted to copy and distribute modified versions of
  11. this manual under the conditions for verbatim copying, provided that
  12. the entire resulting derived work is distributed under the terms of a
  13. permission notice identical to this one.
  14.    Permission is granted to copy and distribute translations of this
  15. manual into another language, under the above conditions for modified
  16. versions, except that this permission notice may be stated in a
  17. translation approved by the Foundation.
  18. File: diff.info,  Node: Line Formats,  Next: Detailed If-then-else,  Prev: Line Group Formats,  Up: If-then-else
  19. Line Formats
  20. ------------
  21.    Line formats control how each line taken from an input file is
  22. output as part of a line group in if-then-else format.
  23.    For example, the following command outputs text with a one-column
  24. change indicator to the left of the text.  The first column of output
  25. is `-' for deleted lines, `|' for added lines, and a space for
  26. unchanged lines.  The formats contain newline characters where newlines
  27. are desired on output.
  28.      diff \
  29.         --old-line-format='-%l
  30.      ' \
  31.         --new-line-format='|%l
  32.      ' \
  33.         --unchanged-line-format=' %l
  34.      ' \
  35.         old new
  36.    To specify a line format, use one of the following options.  You
  37. should quote FORMAT, since it often contains shell metacharacters.
  38. `--old-line-format=FORMAT'
  39.      formats lines just from the first file.
  40. `--new-line-format=FORMAT'
  41.      formats lines just from the second file.
  42. `--unchanged-line-format=FORMAT'
  43.      formats lines common to both files.
  44.    In a line format, ordinary characters represent themselves;
  45. conversion specifications start with `%' and have one of the following
  46. forms.
  47.      stands for the the contents of the line, not counting its trailing
  48.      newline (if any).  This format ignores whether the line is
  49.      incomplete; *Note Incomplete Lines::.
  50.      stands for the the contents of the line, including its trailing
  51.      newline (if any).  If a line is incomplete, this format preserves
  52.      its incompleteness.
  53.      stands for a null character.
  54.      stands for `%'.
  55.    The default line format is `%l' followed by a newline character.
  56.    If the input contains tab characters and it is important that they
  57. line up on output, you should ensure that `%l' or `%L' in a line format
  58. is just after a tab stop (e.g. by preceding `%l' or `%L' with a tab
  59. character), or you should use the `-t' or `--expand-tabs' option.
  60. File: diff.info,  Node: Detailed If-then-else,  Next: Example If-then-else,  Prev: Line Formats,  Up: If-then-else
  61. Detailed Description of If-then-else Format
  62. -------------------------------------------
  63.    For lines common to both files, `diff' uses the unchanged line group
  64. format.  For each hunk of differences in the merged output format, if
  65. the hunk contains only lines from the first file, `diff' uses the old
  66. line group format; if the hunk contains only lines from the second
  67. file, `diff' uses the new group format; otherwise, `diff' uses the
  68. changed group format.
  69.    The old, new, and unchanged line formats specify the output format of
  70. lines from the first file, lines from the second file, and lines common
  71. to both files, respectively.
  72.    The option `--ifdef=NAME' is equivalent to the following sequence of
  73. options using shell syntax:
  74.      --old-group-format='#ifndef NAME
  75.      %<#endif /* not NAME */
  76.      ' \
  77.      --new-group-format='#ifdef NAME
  78.      %>#endif /* NAME */
  79.      ' \
  80.      --unchanged-group-format='%=' \
  81.      --changed-group-format='#ifndef NAME
  82.      %<#else /* NAME */
  83.      %>#endif /* NAME */
  84.      '
  85.    You should carefully check the `diff' output for proper nesting.
  86. For example, when using the the `-D NAME' or `--ifdef=NAME' option, you
  87. should check that if the differing lines contain any of the C
  88. preprocessor directives `#ifdef', `#ifndef', `#else', `#elif', or
  89. `#endif', they are nested properly and match.  If they don't, you must
  90. make corrections manually.  It is a good idea to carefully check the
  91. resulting code anyway to make sure that it really does what you want it
  92. to; depending on how the input files were produced, the output might
  93. contain duplicate or otherwise incorrect code.
  94.    The `patch' `-D NAME' option behaves just like the `diff' `-D NAME'
  95. option, except it operates on a file and a diff to produce a merged
  96. file; *Note patch Options::.
  97. File: diff.info,  Node: Example If-then-else,  Prev: Detailed If-then-else,  Up: If-then-else
  98. An Example of If-then-else Format
  99. ---------------------------------
  100.    Here is the output of `diff -DTWO lao tzu' (*note Sample diff
  101. Input::., for the complete contents of the two files):
  102.      #ifndef TWO
  103.      The Way that can be told of is not the eternal Way;
  104.      The name that can be named is not the eternal name.
  105.      #endif /* not TWO */
  106.      The Nameless is the origin of Heaven and Earth;
  107.      #ifndef TWO
  108.      The Named is the mother of all things.
  109.      #else /* TWO */
  110.      The named is the mother of all things.
  111.      
  112.      #endif /* TWO */
  113.      Therefore let there always be non-being,
  114.        so we may see their subtlety,
  115.      And let there always be being,
  116.        so we may see their outcome.
  117.      The two are the same,
  118.      But after they are produced,
  119.        they have different names.
  120.      #ifdef TWO
  121.      They both may be called deep and profound.
  122.      Deeper and more profound,
  123.      The door of all subtleties!
  124.      #endif /* TWO */
  125. File: diff.info,  Node: Comparing Directories,  Next: Adjusting Output,  Prev: Output Formats,  Up: Top
  126. Comparing Directories
  127. *********************
  128.    You can use `diff' to compare some or all of the files in two
  129. directory trees.  When both file name arguments to `diff' are
  130. directories, it compares each file that is contained in both
  131. directories, examining file names in alphabetical order.  Normally
  132. `diff' is silent about pairs of files that contain no differences, but
  133. if you use the `-s' or `--report-identical-files' option, it reports
  134. pairs of identical files.  Normally `diff' reports subdirectories
  135. common to both directories without comparing subdirectories' files, but
  136. if you use the `-r' or `--recursive' option, it compares every
  137. corresponding pair of files in the directory trees, as many levels deep
  138. as they go.
  139.    For file names that are in only one of the directories, `diff'
  140. normally does not show the contents of the file that exists; it reports
  141. only that the file exists in that directory and not in the other.  You
  142. can make `diff' act as though the file existed but was empty in the
  143. other directory, so that it outputs the entire contents of the file that
  144. actually exists.  (It is output as either an insertion or a deletion,
  145. depending on whether it is in the first or the second directory given.)
  146. To do this, use the `-N' or `--new-file' option.
  147.    If the older directory contains one or more large files that are not
  148. in the newer directory, you can make the patch smaller by using the
  149. `-P' or `--unidirectional-new-file' option instead of `-N'.  This
  150. option is like `-N' except that it only inserts the contents of files
  151. that appear in the second directory but not the first (that is, files
  152. that were added).  At the top of the patch, write instructions for the
  153. user applying the patch to remove the files that were deleted before
  154. applying the patch.  *Note Making Patches::, for more discussion of
  155. making patches for distribution.
  156.    To ignore some files while comparing directories, use the `-x
  157. PATTERN' or `--exclude=PATTERN' option.  This option ignores any files
  158. or subdirectories whose base names match the shell pattern PATTERN.
  159. Unlike in the shell, a period at the start of the base of a file name
  160. matches a wildcard at the start of a pattern.  You should enclose
  161. PATTERN in quotes so that the shell does not expand it.  For example,
  162. the option `-x '*.[ao]'' ignores any file whose name ends with `.a' or
  163. `.o'.
  164.    This option accumulates if you specify it more than once.  For
  165. example, using the options `-x 'RCS' -x '*,v'' ignores any file or
  166. subdirectory whose base name is `RCS' or ends with `,v'.
  167.    If you need to give this option many times, you can instead put the
  168. patterns in a file, one pattern per line, and use the `-X FILE' or
  169. `--exclude-from=FILE' option.
  170.    If you have been comparing two directories and stopped partway
  171. through, later you might want to continue where you left off.  You can
  172. do this by using the `-S FILE' or `--starting-file=FILE' option.  This
  173. compares only the file FILE and all alphabetically later files in the
  174. topmost directory level.
  175. File: diff.info,  Node: Adjusting Output,  Next: diff Performance,  Prev: Comparing Directories,  Up: Top
  176. Making `diff' Output Prettier
  177. *****************************
  178.    `diff' provides several ways to adjust the appearance of its output.
  179. These adjustments can be applied to any output format.
  180. * Menu:
  181. * Tabs::        Preserving the alignment of tabstops.
  182. * Pagination::        Page numbering and timestamping `diff' output.
  183. File: diff.info,  Node: Tabs,  Next: Pagination,  Up: Adjusting Output
  184. Preserving Tabstop Alignment
  185. ============================
  186.    The lines of text in some of the `diff' output formats are preceded
  187. by one or two characters that indicate whether the text is inserted,
  188. deleted, or changed.  The addition of those characters can cause tabs to
  189. move to the next tabstop, throwing off the alignment of columns in the
  190. line.  GNU `diff' provides two ways to make tab-aligned columns line up
  191. correctly.
  192.    The first way is to have `diff' convert all tabs into the correct
  193. number of spaces before outputting them; select this method with the
  194. `-t' or `--expand-tabs' option.  `diff' assumes that tabstops are set
  195. every 8 columns.  To use this form of output with `patch', you must
  196. give `patch' the `-l' or `--ignore-whitespace' option (*note Changed
  197. Whitespace::., for more information).
  198.    The other method for making tabs line up correctly is to add a tab
  199. character instead of a space after the indicator character at the
  200. beginning of the line.  This ensures that all following tab characters
  201. are in the same position relative to tabstops that they were in the
  202. original files, so that the output is aligned correctly.  Its
  203. disadvantage is that it can make long lines too long to fit on one line
  204. of the screen or the paper.  It also does not work with the unified
  205. output format, which does not have a space character after the change
  206. type indicator character.  Select this method with the `-T' or
  207. `--initial-tab' option.
  208. File: diff.info,  Node: Pagination,  Prev: Tabs,  Up: Adjusting Output
  209. Paginating `diff' Output
  210. ========================
  211.    It can be convenient to have long output page-numbered and
  212. time-stamped.  The `-l' and `--paginate' options do this by sending the
  213. `diff' output through the `pr' program.  Here is what the page header
  214. might look like for `diff -lc lao tzu':
  215.      Mar 11 13:37 1991  diff -lc lao tzu Page 1
  216. File: diff.info,  Node: diff Performance,  Next: Comparing Three Files,  Prev: Adjusting Output,  Up: Top
  217. `diff' Performance Tradeoffs
  218. ****************************
  219.    GNU `diff' runs quite efficiently; however, in some circumstances
  220. you can cause it to run faster or produce a more compact set of changes.
  221. There are two ways that you can affect the performance of GNU `diff' by
  222. changing the way it compares files.
  223.    Performance has more than one dimension.  These options improve one
  224. aspect of performance at the cost of another, or they improve
  225. performance in some cases while hurting it in others.
  226.    The way that GNU `diff' determines which lines have changed always
  227. comes up with a near-minimal set of differences.  Usually it is good
  228. enough for practical purposes.  If the `diff' output is large, you
  229. might want `diff' to use a modified algorithm that sometimes produces a
  230. smaller set of differences.  The `-d' or `--minimal' option does this;
  231. however, it can also cause `diff' to run more slowly than usual, so it
  232. is not the default behavior.
  233.    When the files you are comparing are large and have small groups of
  234. changes scattered throughout them, you can use the `-H' or
  235. `--speed-large-files' option to make a different modification to the
  236. algorithm that `diff' uses.  If the input files have a constant small
  237. density of changes, this option speeds up the comparisons without
  238. changing the output.  If not, `diff' might produce a larger set of
  239. differences; however, the output will still be correct.
  240.    Normally `diff' discards the prefix and suffix that is common to
  241. both files before it attempts to find a minimal set of differences.
  242. This makes `diff' run faster, but occasionally it may produce
  243. non-minimal output.  The `--horizon-lines=LINES' option prevents `diff'
  244. from discarding the last LINES lines of the prefix and the first LINES
  245. lines of the suffix.  This gives `diff' further opportunities to find a
  246. minimal output.
  247. File: diff.info,  Node: Comparing Three Files,  Next: diff3 Merging,  Prev: diff Performance,  Up: Top
  248. Comparing Three Files
  249. *********************
  250.    Use the program `diff3' to compare three files and show any
  251. differences among them.  (`diff3' can also merge files; see *Note diff3
  252. Merging::).
  253.    The "normal" `diff3' output format shows each hunk of differences
  254. without surrounding context.  Hunks are labeled depending on whether
  255. they are two-way or three-way, and lines are annotated by their
  256. location in the input files.
  257.    *Note Invoking diff3::, for more information on how to run `diff3'.
  258. * Menu:
  259. * Sample diff3 Input::        Sample `diff3' input for examples.
  260. * Detailed diff3 Normal::    A detailed description of normal output format.
  261. * diff3 Hunks::            The format of normal output format.
  262. * Example diff3 Normal::    Sample output in the normal format.
  263. File: diff.info,  Node: Sample diff3 Input,  Next: Detailed diff3 Normal,  Up: Comparing Three Files
  264. A Third Sample Input File
  265. =========================
  266.    Here is a third sample file that will be used in examples to
  267. illustrate the output of `diff3' and how various options can change it.
  268. The first two files are the same that we used for `diff' (*note Sample
  269. diff Input::.).  This is the third sample file, called `tao':
  270.      The Way that can be told of is not the eternal Way;
  271.      The name that can be named is not the eternal name.
  272.      The Nameless is the origin of Heaven and Earth;
  273.      The named is the mother of all things.
  274.      
  275.      Therefore let there always be non-being,
  276.        so we may see their subtlety,
  277.      And let there always be being,
  278.        so we may see their result.
  279.      The two are the same,
  280.      But after they are produced,
  281.        they have different names.
  282.      
  283.        -- The Way of Lao-Tzu, tr. Wing-tsit Chan
  284. File: diff.info,  Node: Detailed diff3 Normal,  Next: diff3 Hunks,  Prev: Sample diff3 Input,  Up: Comparing Three Files
  285. Detailed Description of `diff3' Normal Format
  286. =============================================
  287.    Each hunk begins with a line marked `===='.  Three-way hunks have
  288. plain `====' lines, and two-way hunks have `1', `2', or `3' appended to
  289. specify which of the three input files differ in that hunk.  The hunks
  290. contain copies of two or three sets of input lines each preceded by one
  291. or two commands identifying where the lines came from.  Two spaces
  292. precede each copy of an input line to distinguish it from the commands.
  293. Commands take the following forms:
  294. `FILE:La'
  295.      This hunk appears after line L of file FILE, and contains no lines
  296.      in that file.  To edit this file to yield the other files, one
  297.      must append hunk lines taken from the other files.  For example,
  298.      `1:11a' means that the hunk follows line 11 in the first file and
  299.      contains no lines from that file.
  300. `FILE:Rc'
  301.      This hunk contains the lines in the range R of file FILE.  The
  302.      range R is a comma-separated pair of line numbers, or just one
  303.      number if the range is a singleton.  To edit this file to yield the
  304.      other files, one must change the specified lines to be the lines
  305.      taken from the other files.  For example, `2:11,13c' means that
  306.      the hunk contains lines 11 through 13 from the second file.
  307.    If the last line in a set of input lines is incomplete (*note
  308. Incomplete Lines::.), it is distinguished on output from a full line by
  309. a following line that starts with `\'.
  310. File: diff.info,  Node: diff3 Hunks,  Next: Example diff3 Normal,  Prev: Detailed diff3 Normal,  Up: Comparing Three Files
  311. `diff3' Hunks
  312. =============
  313.    Groups of lines that differ in two or three of the input files are
  314. called "diff3 hunks", by analogy with `diff' hunks (*note Hunks::.).
  315. If all three input files differ in a `diff3' hunk, the hunk is called a
  316. "three-way hunk"; if just two input files differ, it is a "two-way
  317. hunk".
  318.    As with `diff', several solutions are possible.  When comparing the
  319. files `A', `B', and `C', `diff3' normally finds `diff3' hunks by
  320. merging the two-way hunks output by the two commands `diff A B' and
  321. `diff A C'.  This does not necessarily minimize the size of the output,
  322. but exceptions should be rare.
  323.    For example, suppose `F' contains the three lines `a', `b', `f', `G'
  324. contains the lines `g', `b', `g', and `H' contains the lines `a', `b',
  325. `h'.  `diff3 F G H' might output the following:
  326.      ====2
  327.      1:1c
  328.      3:1c
  329.        a
  330.      2:1c
  331.        g
  332.      ====
  333.      1:3c
  334.        f
  335.      2:3c
  336.        g
  337.      3:3c
  338.        h
  339. because it found a two-way hunk containing `a' in the first and third
  340. files and `g' in the second file, then the single line `b' common to
  341. all three files, then a three-way hunk containing the last line of each
  342. file.
  343. File: diff.info,  Node: Example diff3 Normal,  Prev: diff3 Hunks,  Up: Comparing Three Files
  344. An Example of `diff3' Normal Format
  345. ===================================
  346.    Here is the output of the command `diff3 lao tzu tao' (*note Sample
  347. diff3 Input::., for the complete contents of the files).  Notice that
  348. it shows only the lines that are different among the three files.
  349.      ====2
  350.      1:1,2c
  351.      3:1,2c
  352.        The Way that can be told of is not the eternal Way;
  353.        The name that can be named is not the eternal name.
  354.      2:0a
  355.      ====1
  356.      1:4c
  357.        The Named is the mother of all things.
  358.      2:2,3c
  359.      3:4,5c
  360.        The named is the mother of all things.
  361.      
  362.      ====3
  363.      1:8c
  364.      2:7c
  365.          so we may see their outcome.
  366.      3:9c
  367.          so we may see their result.
  368.      ====
  369.      1:11a
  370.      2:11,13c
  371.        They both may be called deep and profound.
  372.        Deeper and more profound,
  373.        The door of all subtleties!
  374.      3:13,14c
  375.      
  376.          -- The Way of Lao-Tzu, tr. Wing-tsit Chan
  377. File: diff.info,  Node: diff3 Merging,  Next: Interactive Merging,  Prev: Comparing Three Files,  Up: Top
  378. Merging From a Common Ancestor
  379. ******************************
  380.    When two people have made changes to copies of the same file,
  381. `diff3' can produce a merged output that contains both sets of changes
  382. together with warnings about conflicts.
  383.    One might imagine programs with names like `diff4' and `diff5' to
  384. compare more than three files simultaneously, but in practice the need
  385. rarely arises.  You can use `diff3' to merge three or more sets of
  386. changes to a file by merging two change sets at a time.
  387.    `diff3' can incorporate changes from two modified versions into a
  388. common preceding version.  This lets you merge the sets of changes
  389. represented by the two newer files.  Specify the common ancestor version
  390. as the second argument and the two newer versions as the first and third
  391. arguments, like this:
  392.      diff3 MINE OLDER YOURS
  393. You can remember the order of the arguments by noting that they are in
  394. alphabetical order.
  395.    You can think of this as subtracting OLDER from YOURS and adding the
  396. result to MINE, or as merging into MINE the changes that would turn
  397. OLDER into YOURS.  This merging is well-defined as long as MINE and
  398. OLDER match in the neighborhood of each such change.  This fails to be
  399. true when all three input files differ or when only OLDER differs; we
  400. call this a "conflict".  When all three input files differ, we call the
  401. conflict an "overlap".
  402.    `diff3' gives you several ways to handle overlaps and conflicts.
  403. You can omit overlaps or conflicts, or select only overlaps, or mark
  404. conflicts with special `<<<<<<<' and `>>>>>>>' lines.
  405.    `diff3' can output the merge results as an `ed' script that that can
  406. be applied to the first file to yield the merged output.  However, it
  407. is usually better to have `diff3' generate the merged output directly;
  408. this bypasses some problems with `ed'.
  409. * Menu:
  410. * Which Changes::        Selecting changes to incorporate.
  411. * Marking Conflicts::        Marking conflicts.
  412. * Bypassing ed::        Generating merged output directly.
  413. * Merging Incomplete Lines::    How `diff3' merges incomplete lines.
  414. * Saving the Changed File::    Emulating System V behavior.
  415. File: diff.info,  Node: Which Changes,  Next: Marking Conflicts,  Up: diff3 Merging
  416. Selecting Which Changes to Incorporate
  417. ======================================
  418.    You can select all unmerged changes from OLDER to YOURS for merging
  419. into MINE with the `-e' or `--ed' option.  You can select only the
  420. nonoverlapping unmerged changes with `-3' or `--easy-only', and you can
  421. select only the overlapping changes with `-x' or `--overlap-only'.
  422.    The `-e', `-3' and `-x' options select only "unmerged changes", i.e.
  423. changes where MINE and YOURS differ; they ignore changes from OLDER to
  424. YOURS where MINE and YOURS are identical, because they assume that such
  425. changes have already been merged.  If this assumption is not a safe
  426. one, you can use the `-A' or `--show-all' option (*note Marking
  427. Conflicts::.).
  428.    Here is the output of the command `diff3' with each of these three
  429. options (*note Sample diff3 Input::., for the complete contents of the
  430. files).  Notice that `-e' outputs the union of the disjoint sets of
  431. changes output by `-3' and `-x'.
  432.    Output of `diff3 -e lao tzu tao':
  433.      11a
  434.      
  435.        -- The Way of Lao-Tzu, tr. Wing-tsit Chan
  436.      .
  437.      8c
  438.        so we may see their result.
  439.      .
  440.    Output of `diff3 -3 lao tzu tao':
  441.      8c
  442.        so we may see their result.
  443.      .
  444.    Output of `diff3 -x lao tzu tao':
  445.      11a
  446.      
  447.        -- The Way of Lao-Tzu, tr. Wing-tsit Chan
  448.      .
  449. File: diff.info,  Node: Marking Conflicts,  Next: Bypassing ed,  Prev: Which Changes,  Up: diff3 Merging
  450. Marking Conflicts
  451. =================
  452.    `diff3' can mark conflicts in the merged output by bracketing them
  453. with special marker lines.  A conflict that comes from two files A and
  454. B is marked as follows:
  455.      <<<<<<< A
  456.      lines from A
  457.      =======
  458.      lines from B
  459.      >>>>>>> B
  460.    A conflict that comes from three files A, B and C is marked as
  461. follows:
  462.      <<<<<<< A
  463.      lines from A
  464.      ||||||| B
  465.      lines from B
  466.      =======
  467.      lines from C
  468.      >>>>>>> C
  469.    The `-A' or `--show-all' option acts like the `-e' option, except
  470. that it brackets conflicts, and it outputs all changes from OLDER to
  471. YOURS, not just the unmerged changes.  Thus, given the sample input
  472. files (*note Sample diff3 Input::.), `diff3 -A lao tzu tao' puts
  473. brackets around the conflict where only `tzu' differs:
  474.      <<<<<<< tzu
  475.      =======
  476.      The Way that can be told of is not the eternal Way;
  477.      The name that can be named is not the eternal name.
  478.      >>>>>>> tao
  479.    And it outputs the three-way conflict as follows:
  480.      <<<<<<< lao
  481.      ||||||| tzu
  482.      They both may be called deep and profound.
  483.      Deeper and more profound,
  484.      The door of all subtleties!
  485.      =======
  486.      
  487.        -- The Way of Lao-Tzu, tr. Wing-tsit Chan
  488.      >>>>>>> tao
  489.    The `-E' or `--show-overlap' option outputs less information than
  490. the `-A' or `--show-all' option, because it outputs only unmerged
  491. changes, and it never outputs the contents of the second file.  Thus
  492. the `-E' option acts like the `-e' option, except that it brackets the
  493. first and third files from three-way overlapping changes.  Similarly,
  494. `-X' acts like `-x', except it brackets all its (necessarily
  495. overlapping) changes.  For example, for the three-way overlapping
  496. change above, the `-E' and `-X' options output the following:
  497.      <<<<<<< lao
  498.      =======
  499.      
  500.        -- The Way of Lao-Tzu, tr. Wing-tsit Chan
  501.      >>>>>>> tao
  502.    If you are comparing files that have meaningless or uninformative
  503. names, you can use the `-L LABEL' or `--label=LABEL' option to show
  504. alternate names in the `<<<<<<<', `|||||||' and `>>>>>>>' brackets.
  505. This option can be given up to three times, once for each input file.
  506. Thus `diff3 -A -L X -L Y -L Z A B C' acts like `diff3 -A A B C', except
  507. that the output looks like it came from files named `X', `Y' and `Z'
  508. rather than from files named `A', `B' and `C'.
  509. File: diff.info,  Node: Bypassing ed,  Next: Merging Incomplete Lines,  Prev: Marking Conflicts,  Up: diff3 Merging
  510. Generating the Merged Output Directly
  511. =====================================
  512.    With the `-m' or `--merge' option, `diff3' outputs the merged file
  513. directly.  This is more efficient than using `ed' to generate it, and
  514. works even with non-text files that `ed' would reject.  If you specify
  515. `-m' without an `ed' script option, `-A' (`--show-all') is assumed.
  516.    For example, the command `diff3 -m lao tzu tao' (*note Sample diff3
  517. Input::. for a copy of the input files) would output the following:
  518.      <<<<<<< tzu
  519.      =======
  520.      The Way that can be told of is not the eternal Way;
  521.      The name that can be named is not the eternal name.
  522.      >>>>>>> tao
  523.      The Nameless is the origin of Heaven and Earth;
  524.      The Named is the mother of all things.
  525.      Therefore let there always be non-being,
  526.        so we may see their subtlety,
  527.      And let there always be being,
  528.        so we may see their result.
  529.      The two are the same,
  530.      But after they are produced,
  531.        they have different names.
  532.      <<<<<<< lao
  533.      ||||||| tzu
  534.      They both may be called deep and profound.
  535.      Deeper and more profound,
  536.      The door of all subtleties!
  537.      =======
  538.      
  539.        -- The Way of Lao-Tzu, tr. Wing-tsit Chan
  540.      >>>>>>> tao
  541. File: diff.info,  Node: Merging Incomplete Lines,  Next: Saving the Changed File,  Prev: Bypassing ed,  Up: diff3 Merging
  542. How `diff3' Merges Incomplete Lines
  543. ===================================
  544.    With `-m', incomplete lines (*note Incomplete Lines::.) are simply
  545. copied to the output as they are found; if the merged output ends in an
  546. conflict and one of the input files ends in an incomplete line,
  547. succeeding `|||||||', `=======' or `>>>>>>>' brackets appear somewhere
  548. other than the start of a line because they are appended to the
  549. incomplete line.
  550.    Without `-m', if an `ed' script option is specified and an
  551. incomplete line is found, `diff3' generates a warning and acts as if a
  552. newline had been present.
  553. File: diff.info,  Node: Saving the Changed File,  Prev: Merging Incomplete Lines,  Up: diff3 Merging
  554. Saving the Changed File
  555. =======================
  556.    Traditional Unix `diff3' generates an `ed' script without the
  557. trailing `w' and and `q' commands that save the changes.  System V
  558. `diff3' generates these extra commands.  GNU `diff3' normally behaves
  559. like traditional Unix `diff3', but with the `-i' option it behaves like
  560. System V `diff3' and appends the `w' and `q' commands.
  561.    The `-i' option requires one of the `ed' script options `-AeExX3',
  562. and is incompatible with the merged output option `-m'.
  563. File: diff.info,  Node: Interactive Merging,  Next: Merging with patch,  Prev: diff3 Merging,  Up: Top
  564. Interactive Merging with `sdiff'
  565. ********************************
  566.    With `sdiff', you can merge two files interactively based on a
  567. side-by-side `-y' format comparison (*note Side by Side::.).  Use `-o
  568. FILE' or `--output=FILE' to specify where to put the merged text.
  569. *Note Invoking sdiff::, for more details on the options to `sdiff'.
  570.    Another way to merge files interactively is to use the Emacs Lisp
  571. package `emerge'.  *Note emerge: (emacs)emerge, for more information.
  572. * Menu:
  573. * sdiff Option Summary::Summary of `sdiff' options.
  574. * Merge Commands::    Merging two files interactively.
  575. File: diff.info,  Node: sdiff Option Summary,  Next: Merge Commands,  Up: Interactive Merging
  576. Specifying `diff' Options to `sdiff'
  577. ====================================
  578.    The following `sdiff' options have the same meaning as for `diff'.
  579. *Note diff Options::, for the use of these options.
  580.      -a -b -d -i -t -v
  581.      -B -H -I REGEXP
  582.      
  583.      --ignore-blank-lines  --ignore-case
  584.      --ignore-matching-lines=REGEXP  --ignore-space-change
  585.      --left-column  --minimal  --speed-large-files
  586.      --suppress-common-lines  --expand-tabs
  587.      --text  --version  --width=COLUMNS
  588.    For historical reasons, `sdiff' has alternate names for some
  589. options.  The `-l' option is equivalent to the `--left-column' option,
  590. and similarly `-s' is equivalent to `--suppress-common-lines'.  The
  591. meaning of the `sdiff' `-w' and `-W' options is interchanged from that
  592. of `diff': with `sdiff', `-w COLUMNS' is equivalent to
  593. `--width=COLUMNS', and `-W' is equivalent to `--ignore-all-space'.
  594. `sdiff' without the `-o' option is equivalent to `diff' with the `-y'
  595. or `--side-by-side' option (*note Side by Side::.).
  596. File: diff.info,  Node: Merge Commands,  Prev: sdiff Option Summary,  Up: Interactive Merging
  597. Merge Commands
  598. ==============
  599.    Groups of common lines, with a blank gutter, are copied from the
  600. first file to the output.  After each group of differing lines, `sdiff'
  601. prompts with `%' and pauses, waiting for one of the following commands.
  602. Follow each command with RET.
  603.      Discard both versions.  Invoke a text editor on an empty temporary
  604.      file, then copy the resulting file to the output.
  605.      Concatenate the two versions, edit the result in a temporary file,
  606.      then copy the edited result to the output.
  607.      Edit a copy of the left version, then copy the result to the
  608.      output.
  609.      Edit a copy of the right version, then copy the result to the
  610.      output.
  611.      Copy the left version to the output.
  612.      Quit.
  613.      Copy the right version to the output.
  614.      Silently copy common lines.
  615.      Verbosely copy common lines.  This is the default.
  616.    The text editor invoked is specified by the `EDITOR' environment
  617. variable if it is set.  The default is system-dependent.
  618. File: diff.info,  Node: Merging with patch,  Next: Making Patches,  Prev: Interactive Merging,  Up: Top
  619. Merging with `patch'
  620. ********************
  621.    `patch' takes comparison output produced by `diff' and applies the
  622. differences to a copy of the original file, producing a patched
  623. version.  With `patch', you can distribute just the changes to a set of
  624. files instead of distributing the entire file set; your correspondents
  625. can apply `patch' to update their copy of the files with your changes.
  626. `patch' automatically determines the diff format, skips any leading or
  627. trailing headers, and uses the headers to determine which file to
  628. patch.  This lets your correspondents feed an article or message
  629. containing a difference listing directly to `patch'.
  630.    `patch' detects and warns about common problems like forward
  631. patches.  It saves the original version of the files it patches, and
  632. saves any patches that it could not apply.  It can also maintain a
  633. `patchlevel.h' file to ensures that your correspondents apply diffs in
  634. the proper order.
  635.    `patch' accepts a series of diffs in its standard input, usually
  636. separated by headers that specify which file to patch.  It applies
  637. `diff' hunks (*note Hunks::.) one by one.  If a hunk does not exactly
  638. match the original file, `patch' uses heuristics to try to patch the
  639. file as well as it can.  If no approximate match can be found, `patch'
  640. rejects the hunk and skips to the next hunk.  `patch' normally replaces
  641. each file F with its new version, saving the original file in `F.orig',
  642. and putting reject hunks (if any) into `F.rej'.
  643.    *Note Invoking patch::, for detailed information on the options to
  644. `patch'.  *Note Backups::, for more information on how `patch' names
  645. backup files.  *Note Rejects::, for more information on where `patch'
  646. puts reject hunks.
  647. * Menu:
  648. * patch Input::        Selecting the type of `patch' input.
  649. * Imperfect::        Dealing with imperfect patches.
  650. * Empty Files::        Removing empty files after patching.
  651. * Multiple Patches::    Handling multiple patches in a file specially.
  652. * patch Messages::    Messages and questions `patch' can produce.
  653. File: diff.info,  Node: patch Input,  Next: Imperfect,  Up: Merging with patch
  654. Selecting the `patch' Input Format
  655. ==================================
  656.    `patch' normally determines which `diff' format the patch file uses
  657. by examining its contents.  For patch files that contain particularly
  658. confusing leading text, you might need to use one of the following
  659. options to force `patch' to interpret the patch file as a certain
  660. format of diff.  The output formats listed here are the only ones that
  661. `patch' can understand.
  662. `--context'
  663.      context diff.
  664. `--ed'
  665.      `ed' script.
  666. `--normal'
  667.      normal diff.
  668. `--unified'
  669.      unified diff.
  670. File: diff.info,  Node: Imperfect,  Next: Empty Files,  Prev: patch Input,  Up: Merging with patch
  671. Applying Imperfect Patches
  672. ==========================
  673.    `patch' tries to skip any leading text in the patch file, apply the
  674. diff, and then skip any trailing text.  Thus you can feed a news article
  675. or mail message directly to `patch', and it should work.  If the entire
  676. diff is indented by a constant amount of whitespace, `patch'
  677. automatically ignores the indentation.
  678.    However, certain other types of imperfect input require user
  679. intervention.
  680. * Menu:
  681. * Changed Whitespace::    When tabs and spaces don't match exactly.
  682. * Reversed Patches::    Applying reversed patches correctly.
  683. * Inexact::        Helping `patch' find close matches.
  684. File: diff.info,  Node: Changed Whitespace,  Next: Reversed Patches,  Up: Imperfect
  685. Applying Patches with Changed Whitespace
  686. ----------------------------------------
  687.    Sometimes mailers, editors, or other programs change spaces into
  688. tabs, or vice versa.  If this happens to a patch file or an input file,
  689. the files might look the same, but `patch' will not be able to match
  690. them properly.  If this problem occurs, use the `-l' or
  691. `--ignore-whitespace' option, which makes `patch' compare whitespace
  692. loosely so that any sequence of whitespace in the patch file matches
  693. any sequence of whitespace in the input files.  Non-whitespace
  694. characters must still match exactly.  Each line of the context must
  695. still match a line in the input file.
  696. File: diff.info,  Node: Reversed Patches,  Next: Inexact,  Prev: Changed Whitespace,  Up: Imperfect
  697. Applying Reversed Patches
  698. -------------------------
  699.    Sometimes people run `diff' with the new file first instead of
  700. second.  This creates a diff that is "reversed".  To apply such
  701. patches, give `patch' the `-R' or `--reverse' option.  `patch' then
  702. attempts to swap each hunk around before applying it.  Rejects come out
  703. in the swapped format.  The `-R' option does not work with `ed' scripts
  704. because there is too little information in them to reconstruct the
  705. reverse operation.
  706.    Often `patch' can guess that the patch is reversed.  If the first
  707. hunk of a patch fails, `patch' reverses the hunk to see if it can apply
  708. it that way.  If it can, `patch' asks you if you want to have the `-R'
  709. option set; if it can't, `patch' continues to apply the patch normally.
  710. This method cannot detect a reversed patch if it is a normal diff and
  711. the first command is an append (which should have been a delete) since
  712. appends always succeed, because a null context matches anywhere.  But
  713. most patches add or change lines rather than delete them, so most
  714. reversed normal diffs begin with a delete, which fails, and `patch'
  715. notices.
  716.    If you apply a patch that you have already applied, `patch' thinks
  717. it is a reversed patch and offers to un-apply the patch.  This could be
  718. construed as a feature.  If you did this inadvertently and you don't
  719. want to un-apply the patch, just answer `n' to this offer and to the
  720. subsequent "apply anyway" question--or type `C-c' to kill the `patch'
  721. process.
  722. File: diff.info,  Node: Inexact,  Prev: Reversed Patches,  Up: Imperfect
  723. Helping `patch' Find Inexact Matches
  724. ------------------------------------
  725.    For context diffs, and to a lesser extent normal diffs, `patch' can
  726. detect when the line numbers mentioned in the patch are incorrect, and
  727. it attempts to find the correct place to apply each hunk of the patch.
  728. As a first guess, it takes the line number mentioned in the hunk, plus
  729. or minus any offset used in applying the previous hunk.  If that is not
  730. the correct place, `patch' scans both forward and backward for a set of
  731. lines matching the context given in the hunk.
  732.    First `patch' looks for a place where all lines of the context
  733. match.  If it cannot find such a place, and it is reading a context or
  734. unified diff, and the maximum fuzz factor is set to 1 or more, then
  735. `patch' makes another scan, ignoring the first and last line of
  736. context.  If that fails, and the maximum fuzz factor is set to 2 or
  737. more, it makes another scan, ignoring the first two and last two lines
  738. of context are ignored.  It continues similarly if the maximum fuzz
  739. factor is larger.
  740.    The `-F LINES' or `--fuzz=LINES' option sets the maximum fuzz factor
  741. to LINES.  This option only applies to context and unified diffs; it
  742. ignores up to LINES lines while looking for the place to install a
  743. hunk.  Note that a larger fuzz factor increases the odds of making a
  744. faulty patch.  The default fuzz factor is 2; it may not be set to more
  745. than the number of lines of context in the diff, ordinarily 3.
  746.    If `patch' cannot find a place to install a hunk of the patch, it
  747. writes the hunk out to a reject file (*note Rejects::., for information
  748. on how reject files are named).  It writes out rejected hunks in context
  749. format no matter what form the input patch is in.  If the input is a
  750. normal or `ed' diff, many of the contexts are simply null.  The line
  751. numbers on the hunks in the reject file may be different from those in
  752. the patch file: they show the approximate location where `patch' thinks
  753. the failed hunks belong in the new file rather than in the old one.
  754.    As it completes each hunk, `patch' tells you whether the hunk
  755. succeeded or failed, and if it failed, on which line (in the new file)
  756. `patch' thinks the hunk should go.  If this is different from the line
  757. number specified in the diff, it tells you the offset.  A single large
  758. offset *may* indicate that `patch' installed a hunk in the wrong place.
  759. `patch' also tells you if it used a fuzz factor to make the match, in
  760. which case you should also be slightly suspicious.
  761.    `patch' cannot tell if the line numbers are off in an `ed' script,
  762. and can only detect wrong line numbers in a normal diff when it finds a
  763. change or delete command.  It may have the same problem with a context
  764. diff using a fuzz factor equal to or greater than the number of lines
  765. of context shown in the diff (typically 3).  In these cases, you should
  766. probably look at a context diff between your original and patched input
  767. files to see if the changes make sense.  Compiling without errors is a
  768. pretty good indication that the patch worked, but not a guarantee.
  769.    `patch' usually produces the correct results, even when it must make
  770. many guesses.  However, the results are guaranteed only when the patch
  771. is applied to an exact copy of the file that the patch was generated
  772. from.
  773. File: diff.info,  Node: Empty Files,  Next: Multiple Patches,  Prev: Imperfect,  Up: Merging with patch
  774. Removing Empty Files
  775. ====================
  776.    Sometimes when comparing two directories, the first directory
  777. contains a file that the second directory does not.  If you give `diff'
  778. the `-N' or `--new-file' option, it outputs a diff that deletes the
  779. contents of this file.  By default, `patch' leaves an empty file after
  780. applying such a diff.  The `-E' or `--remove-empty-files' option to
  781. `patch' deletes output files that are empty after applying the diff.
  782. File: diff.info,  Node: Multiple Patches,  Next: patch Messages,  Prev: Empty Files,  Up: Merging with patch
  783. Multiple Patches in a File
  784. ==========================
  785.    If the patch file contains more than one patch, `patch' tries to
  786. apply each of them as if they came from separate patch files.  This
  787. means that it determines the name of the file to patch for each patch,
  788. and that it examines the leading text before each patch for file names
  789. and prerequisite revision level (*note Making Patches::., for more on
  790. that topic).
  791.    For the second and subsequent patches in the patch file, you can give
  792. options and another original file name by separating their argument
  793. lists with a `+'.  However, the argument list for a second or
  794. subsequent patch may not specify a new patch file, since that does not
  795. make sense.
  796.    For example, to tell `patch' to strip the first three slashes from
  797. the name of the first patch in the patch file and none from subsequent
  798. patches, and to use `code.c' as the first input file, you can use:
  799.      patch -p3 code.c + -p0 < patchfile
  800.    The `-S' or `--skip' option ignores the current patch from the patch
  801. file, but continue looking for the next patch in the file.  Thus, to
  802. ignore the first and third patches in the patch file, you can use:
  803.      patch -S + + -S + < patch file
  804. File: diff.info,  Node: patch Messages,  Prev: Multiple Patches,  Up: Merging with patch
  805. Messages and Questions from `patch'
  806. ===================================
  807.    `patch' can produce a variety of messages, especially if it has
  808. trouble decoding its input.  In a few situations where it's not sure how
  809. to proceed, `patch' normally prompts you for more information from the
  810. keyboard.  There are options to suppress printing non-fatal messages
  811. and stopping for keyboard input.
  812.    The message `Hmm...' indicates that `patch' is reading text in the
  813. patch file, attempting to determine whether there is a patch in that
  814. text, and if so, what kind of patch it is.
  815.    You can inhibit all terminal output from `patch', unless an error
  816. occurs, by using the `-s', `--quiet', or `--silent' option.
  817.    There are two ways you can prevent `patch' from asking you any
  818. questions.  The `-f' or `--force' option assumes that you know what you
  819. are doing.  It assumes the following:
  820.    * skip patches for which it can't find a file to patch;
  821.    * patch files even though they have the wrong version for the
  822.      `Prereq:' line in the patch;
  823.    * assume that patches are not reversed even if they look like they
  824.      are.
  825.    The `-t' or `--batch' option is similar to `-f', in that it
  826. suppresses questions, but it makes somewhat different assumptions:
  827.    * skip patches for which it can't find a file to patch (the same as
  828.      `-f');
  829.    * skip patches for which the file has the wrong version for the
  830.      `Prereq:' line in the patch;
  831.    * assume that patches are reversed if they look like they are.
  832.    `patch' exits with a non-zero status if it creates any reject files.
  833. When applying a set of patches in a loop, you should check the exit
  834. status, so you don't apply a later patch to a partially patched file.
  835. File: diff.info,  Node: Making Patches,  Next: Invoking cmp,  Prev: Merging with patch,  Up: Top
  836. Tips for Making Patch Distributions
  837. ***********************************
  838.    Here are some things you should keep in mind if you are going to
  839. distribute patches for updating a software package.
  840.    Make sure you have specified the file names correctly, either in a
  841. context diff header or with an `Index:' line.  If you are patching
  842. files in a subdirectory, be sure to tell the patch user to specify a
  843. `-p' or `--strip' option as needed.  Take care to not send out reversed
  844. patches, since these make people wonder whether they have already
  845. applied the patch.
  846.    To save people from partially applying a patch before other patches
  847. that should have gone before it, you can make the first patch in the
  848. patch file update a file with a name like `patchlevel.h' or
  849. `version.c', which contains a patch level or version number.  If the
  850. input file contains the wrong version number, `patch' will complain
  851. immediately.
  852.    An even clearer way to prevent this problem is to put a `Prereq:'
  853. line before the patch.  If the leading text in the patch file contains a
  854. line that starts with `Prereq:', `patch' takes the next word from that
  855. line (normally a version number) and checks whether the next input file
  856. contains that word, preceded and followed by either whitespace or a
  857. newline.  If not, `patch' prompts you for confirmation before
  858. proceeding.  This makes it difficult to accidentally apply patches in
  859. the wrong order.
  860.    Since `patch' does not handle incomplete lines properly, make sure
  861. that all the source files in your program end with a newline whenever
  862. you release a version.
  863.    To create a patch that changes an older version of a package into a
  864. newer version, first make a copy of the older version in a scratch
  865. directory.  Typically you do that by unpacking a `tar' or `shar'
  866. archive of the older version.
  867.    You might be able to reduce the size of the patch by renaming or
  868. removing some files before making the patch.  If the older version of
  869. the package contains any files that the newer version does not, or if
  870. any files have been renamed between the two versions, make a list of
  871. `rm' and `mv' commands for the user to execute in the old version
  872. directory before applying the patch.  Then run those commands yourself
  873. in the scratch directory.
  874.    If there are any files that you don't need to include in the patch
  875. because they can easily be rebuilt from other files (for example,
  876. `TAGS' and output from `yacc' and `makeinfo'), replace the versions in
  877. the scratch directory with the newer versions, using `rm' and `ln' or
  878. `cp'.
  879.    Now you can create the patch.  The de-facto standard `diff' format
  880. for patch distributions is context format with two lines of context,
  881. produced by giving `diff' the `-C 2' option.  Do not use less than two
  882. lines of context, because `patch' typically needs at least two lines
  883. for proper operation.  Give `diff' the `-P' option in case the newer
  884. version of the package contains any files that the older one does not.
  885. Make sure to specify the scratch directory first and the newer
  886. directory second.
  887.    Add to the top of the patch a note telling the user any `rm' and
  888. `mv' commands to run before applying the patch.  Then you can remove
  889. the scratch directory.
  890. File: diff.info,  Node: Invoking cmp,  Next: Invoking diff,  Prev: Making Patches,  Up: Top
  891. Invoking `cmp'
  892. **************
  893.    The `cmp' command compares two files, and if they differ, tells the
  894. first byte and line number where they differ.  Its arguments are as
  895. follows:
  896.      cmp OPTIONS... FROM-FILE [TO-FILE]
  897.    The file name `-' is always the standard input.  `cmp' also uses the
  898. standard input if one file name is omitted.
  899.    An exit status of 0 means no differences were found, 1 means some
  900. differences were found, and 2 means trouble.
  901. * Menu:
  902. * cmp Options::        Summary of options to `cmp'.
  903. File: diff.info,  Node: cmp Options,  Up: Invoking cmp
  904. Options to `cmp'
  905. ================
  906.    Below is a summary of all of the options that GNU `cmp' accepts.
  907. Most options have two equivalent names, one of which is a single letter
  908. preceded by `-', and the other of which is a long name preceded by
  909. `--'.  Multiple single letter options (unless they take an argument)
  910. can be combined into a single command line word: `-cl' is equivalent to
  911. `-c -l'.
  912.      Print the differing characters.  Display control characters as a
  913.      `^' followed by a letter of the alphabet and precede characters
  914.      that have the high bit set with `M-' (which stands for "meta").
  915.      Print the (decimal) offsets and (octal) values of all differing
  916.      bytes.
  917. `--print-chars'
  918.      Print the differing characters.  Display control characters as a
  919.      `^' followed by a letter of the alphabet and precede characters
  920.      that have the high bit set with `M-' (which stands for "meta").
  921. `--quiet'
  922. `--silent'
  923.      Do not print anything; only return an exit status indicating
  924.      whether the files differ.
  925. `--verbose'
  926.      Print the (decimal) offsets and (octal) values of all differing
  927.      bytes.
  928. File: diff.info,  Node: Invoking diff,  Next: Invoking diff3,  Prev: Invoking cmp,  Up: Top
  929. Invoking `diff'
  930. ***************
  931.    The format for running the `diff' command is:
  932.      diff OPTIONS... FROM-FILE TO-FILE
  933.    In the simplest case, `diff' compares the contents of the two files
  934. FROM-FILE and TO-FILE.  A file name of `-' stands for text read from
  935. the standard input.  As a special case, `diff - -' compares a copy of
  936. standard input to itself.
  937.    If FROM-FILE is a directory and TO-FILE is not, `diff' compares the
  938. file in FROM-FILE whose file name is that of TO-FILE, and vice versa.
  939. The non-directory file must not be `-'.
  940.    If both FROM-FILE and TO-FILE are directories, `diff' compares
  941. corresponding files in both directories, in alphabetical order; this
  942. comparison is not recursive unless the `-r' or `--recursive' option is
  943. given.  `diff' never compares the actual contents of a directory as if
  944. it were a file.  The file that is fully specified may not be standard
  945. input, because standard input is nameless and the notion of "file with
  946. the same name" does not apply.
  947.    `diff' options begin with `-', so normally FROM-FILE and TO-FILE may
  948. not begin with `-'.  However, `--' as an argument by itself treats the
  949. remaining arguments as file names even if they begin with `-'.
  950.    An exit status of 0 means no differences were found, 1 means some
  951. differences were found, and 2 means trouble.
  952. * Menu:
  953. * diff Options::    Summary of options to `diff'.
  954.